This forum is closed to new posts and
responses. Individual names altered for privacy purposes. The information contained in this website is provided for informational purposes only and should not be construed as a forum for customer support requests. Any customer support requests should be directed to the official HCL customer support channels below:
RE: How can i call Lotus Script/Java Agent from JavaScript ~Bill Fezkitherings 8.Jan.04 09:59 PM a Web browser Domino Designer 6.0.3Windows 2000
Have you tried setting the location.href such as in a script block:
location.href = "/db.nsf/AgentName?OpenAgent";
If you don't want to dump the agent contents over whatever document is open in the browser window you can just load the URL into a hidden iFrame on MSIE or a layer on NS/Moz ala:
document.frames("iframeName").location.href = ...
(I don't have a layer reference handy but I'm sure you can find the DOM specifics on the web).